Plugins/Community Based Plugins/IPGeoLocation/OpenAPI/ipgl-openapi.yaml (25 lines of code) (raw):

openapi: 3.0.0 info: title: IPGeoLocation version: 1.0.0 servers: - url: https://api.ipgeolocation.io paths: "/ipgeo/": get: operationId: IPGeoLocation tags: - default summary: This path checks an IP address' location and ISP. parameters: - name: ip in: query schema: type: string required: true responses: '200': description: Successful response content: application/json: {} '401': description: Unauthorized content: application/json: {} default: description: default components: {}